home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE Persistent Caching.xpl < prev    next >
Text File  |  2003-11-20  |  1KB  |  53 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Internet Explorer\System"
  5. "NAME"="Persistent Caching"
  6. "VERSION"="1.02"
  7. "OSVERSION"="100"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Disable IE Persistent Caching"
  10. "DESCRIPTION 1"="Checked box disables Persistent Caching; unchecked [cleared] box enables Persistent Caching [default]."
  11. "DESCRIPTION 2"="After Persistent Cache is disabled, clearing TIF & History folders from Tools/Internet Options/General Tab will purge retained URLs."
  12. "DESCRIPTION 3"="NOTE: This plug-in will only work for IE 5.x and above."
  13. "AUTHOR"="Ojatex@aol.com"
  14. "CONTACTURL"="http://members.aol.com/ojatex/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="Want More Fun? Use Deltree to kick Windows around."
  18.  
  19. sP="HKLM\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\"
  20. v1="Persistent" 'Binary
  21.  
  22.  
  23. Sub Plugin_Initialize 
  24.  if RegPathExists(sP) then
  25.     s=RegReadValue(sP&v1)
  26.     if s="00000000" then SetUIElement 1,true
  27.  else
  28.     Disable
  29.  end if
  30. End Sub
  31.  
  32.  
  33. Sub Plugin_CheckData(ElementIndex)
  34. End Sub
  35.  
  36.  
  37.  
  38. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  39.  b=GetUIElement(1)
  40.  if b=true then
  41.     Call RegWriteValue(sp&v1,"00000000",3)
  42.  else
  43.     Call RegWriteValue(sp&v1,"01000000",3) 
  44.  end if
  45. End Sub
  46.  
  47.  
  48. Sub Plugin_Terminate 
  49. End Sub
  50.  
  51.  
  52.  
  53.